/* General Styles */
body {
  font-family: 'Vazir', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.divider {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, #3498db, #9b59b6);
  margin: 0 auto;
  border-radius: 2px;
}

/* Contact Info Section */
.contact-info-section {
  padding: 5rem 10%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin: 3rem auto;
  max-width: 1200px;
}

.contact-info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-info-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.contact-text h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.contact-text p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
}

.contact-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #3498db, #9b59b6);
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Vazir', sans-serif;
}

.call-button {
  background: linear-gradient(to right, #2ecc71, #27ae60);
  color: white;
}

.call-button:hover {
  background: linear-gradient(to right, #27ae60, #219653);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.email-button {
  background: linear-gradient(to right, #3498db, #2980b9);
  color: white;
}

.email-button:hover {
  background: linear-gradient(to right, #2980b9, #2472a4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Barcode Section */
.barcode-section {
  padding: 5rem 10%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin: 3rem auto;
  max-width: 1200px;
}

.barcode-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.barcode-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

.barcode-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #7f8c8d;
}

.barcode-icon i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.barcode-icon span {
  font-size: 0.9rem;
}

.barcode-icon.active {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.barcode-display {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 300px;
}

.barcode-image {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

#barcode-description {
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Social Media Section */
.social-media-section {
  padding: 5rem 10%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin: 3rem auto;
  max-width: 1200px;
}

.social-media-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.social-icon i {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
}

.social-icon:hover i {
  transform: scale(1.2);
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.telegram {
  background: linear-gradient(45deg, #0088cc, #00aced);
}

.whatsapp {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

.tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c3e50;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.social-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
  bottom: -35px;
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 100;
}

.contact-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.1);
}

.contact-options {
  position: absolute;
  bottom: 70px;
  left: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.floating-contact.active .contact-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-options a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin: 0.3rem 0;
}

.contact-options a:hover {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.contact-options a:before {
  content: attr(data-line);
  display: block;
  font-size: 0.7rem;
  color: #7f8c8d;
  margin-bottom: 0.2rem;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #7f8c8d;
}

.modal-content h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-content p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  text-align: center;
}

.call-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.call-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(52, 152, 219, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Vazir', sans-serif;
  text-align: right;
}

.call-option i {
  margin-left: 10px;
  color: #3498db;
}

.call-option:hover {
  background: rgba(52, 152, 219, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-info-section,
  .barcode-section,
  .social-media-section {
    padding: 3rem 5%;
  }
  
  .contact-info-container {
    grid-template-columns: 1fr;
  }
  
  .barcode-icons {
    flex-wrap: wrap;
  }
  
  .social-media-icons {
    gap: 1rem;
  }
  
  .floating-contact {
    bottom: 20px;
    left: 20px;
  }
}


















    /* هدر دسکتاپ */
    .luxury-desktop-header {
      display: none;
      background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
      padding: 0 5%;
      box-shadow: 0 10px 30px rgba(94, 114, 228, 0.3);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }
    
    .luxury-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
    }
    
    .luxury-nav-list {
      display: flex;
      list-style: none;
    }
    
    .luxury-nav-item {
      position: relative;
    }
    
    .luxury-nav-link {
      display: flex;
      align-items: center;
      color: white;
      text-decoration: none;
      padding: 0 20px;
      height: 80px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .luxury-nav-icon {
      margin-left: 8px;
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }
    
    .luxury-nav-text {
      font-size: 1rem;
      font-weight: 500;
    }
    
    .luxury-nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: white;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
    }
    
    .luxury-nav-link:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }
    
    .luxury-nav-link:hover .luxury-nav-icon {
      transform: translateY(-3px);
    }
    
    .luxury-social-links {
      display: flex;
    }
    
    .luxury-social-link {
      color: white;
      font-size: 1.2rem;
      margin-right: 15px;
      transition: all 0.3s ease;
    }
    
    .luxury-social-link:hover {
      transform: translateY(-3px) scale(1.1);
    }
    
    
    
    /* استایل‌های ریسپانسیو */
    @media (min-width: 992px) {
      .luxury-desktop-header {
        display: block;
      }
    }
    
    @media (max-width: 991px) {
      .luxury-desktop-header {
        display: none;
      }
    }
    
    
    
    
    
    /* دکمه همبرگری لوکس */
    .luxury-hamburger {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
      border: none;
      border-radius: 50%;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1001;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      outline: none;
    }
    
    .luxury-hamburger-box {
      width: 24px;
      height: 24px;
      display: inline-block;
      position: relative;
    }
    
    .luxury-hamburger-inner {
      display: block;
      top: 50%;
      margin-top: -2px;
      width: 24px;
      height: 3px;
      background-color: #fff;
      border-radius: 4px;
      position: absolute;
      transition: transform 0.15s ease;
    }
    
    .luxury-hamburger-inner::before,
    .luxury-hamburger-inner::after {
      content: "";
      display: block;
      width: 24px;
      height: 3px;
      background-color: #fff;
      border-radius: 4px;
      position: absolute;
      transition: transform 0.15s ease;
    }
    
    .luxury-hamburger-inner::before {
      top: -8px;
    }
    
    .luxury-hamburger-inner::after {
      bottom: -8px;
    }
    
    .luxury-hamburger.active .luxury-hamburger-inner {
      transform: rotate(45deg);
    }
    
    .luxury-hamburger.active .luxury-hamburger-inner::before {
      transform: translateY(8px) rotate(90deg);
      opacity: 0;
    }
    
    .luxury-hamburger.active .luxury-hamburger-inner::after {
      transform: translateY(-8px) rotate(90deg);
    }
    
    /* overlay منو */
    .luxury-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.5s ease;
    }
    
    .luxury-menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
    /* سایدبار لوکس */
    .luxury-menu-sidebar {
      position: fixed;
      top: 0;
      right: -400px;
      width: 350px;
      height: 100vh;
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }
    
    .luxury-menu-sidebar.active {
      right: 0;
    }
    
    .luxury-menu-header {
      padding: 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .luxury-menu-logo {
      color: #fff;
      font-size: 1.8rem;
      font-weight: 700;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .luxury-close-btn {
      background: rgba(255, 255, 255, 0.1);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .luxury-close-btn:hover {
      background: rgba(255, 255, 255, 0.2);
    }
    
    .luxury-close-icon {
      display: block;
      width: 20px;
      height: 20px;
      position: relative;
    }
    
    .luxury-close-line {
      display: block;
      width: 100%;
      height: 2px;
      background: #fff;
      position: absolute;
      top: 50%;
    }
    
    .luxury-close-line:first-child {
      transform: rotate(45deg);
    }
    
    .luxury-close-line:last-child {
      transform: rotate(-45deg);
    }
    
    /* آیتم‌های منو */
    .luxury-menu-nav {
      flex: 1;
      padding: 20px 0;
    }
    
    .luxury-menu-items {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .luxury-menu-item {
      margin: 5px 0;
    }
    
    .luxury-menu-link {
      display: flex;
      align-items: center;
      padding: 15px 25px;
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .luxury-menu-link::before {
      content: "";
      position: absolute;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: all 0.5s ease;
    }
    
    .luxury-menu-link:hover::before {
      right: 100%;
    }
    
    .luxury-menu-link:hover {
      background: rgba(255, 255, 255, 0.05);
      padding-right: 30px;
    }
    
    .luxury-menu-icon {
      margin-left: 15px;
      font-size: 1.2rem;
      color: #9d50bb;
      min-width: 25px;
      text-align: center;
    }
    
    .luxury-menu-text {
      flex: 1;
    }
    
    .luxury-menu-arrow {
      font-size: 0.9rem;
      opacity: 0.7;
      transition: all 0.3s ease;
    }
    
    .luxury-menu-link:hover .luxury-menu-arrow {
      opacity: 1;
      transform: translateX(-5px);
    }
    
    /* فوتر منو */
    .luxury-menu-footer {
      padding: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
    }
    
    .luxury-social-links {
      display: flex;
      justify-content: center;
      margin-bottom: 15px;
    }
    
    .luxury-social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: #fff;
      margin: 0 10px;
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }
    
    .luxury-social-link:hover {
      background: #9d50bb;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(157, 80, 187, 0.4);
    }
    
    .luxury-copyright {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.8rem;
      margin-top: 15px;
    }
    
    /* انیمیشن اسکرول */
    @media (max-width: 768px) {
      .luxury-menu-sidebar {
        width: 85%;
        right: -100%;
      }
    }
    
    /* جلوگیری از اسکرول صفحه */
    body.luxury-menu-open {
      overflow: hidden;
      position: fixed;
      width: 100%;
      height: 100%;
    }
    
    @supports (-webkit-overflow-scrolling: touch) {
      body.luxury-menu-open {
        position: relative;
      }
    }
    
    
    
    
    
    /* ابتدا تمام استایل‌های منو را در حالت پیش‌فرض مخفی می‌کنیم */
    .luxury-hamburger,
    .luxury-menu-overlay,
    .luxury-menu-sidebar {
      display: none;
    }
    
    /* فقط در دستگاه‌های موبایل نمایش داده می‌شود */
    @media (max-width: 992px) {
      .luxury-hamburger,
      .luxury-menu-overlay,
      .luxury-menu-sidebar {
        display: block;
      }
      
      /* بقیه استایل‌های منو همانند قبل */
      .luxury-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
        border: none;
        border-radius: 50%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        outline: none;
      }
      
    }